home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / DEPOSITO / REmovido / Nave / MarsFighter.swf / scripts / DefineButton2_157 / BUTTONCONDACTION on(release).as
Text File  |  2006-06-13  |  812b  |  35 lines

  1. on(release){
  2.    if(_global.pilot == 2)
  3.    {
  4.       PilotSelect = "YOU ALREDY HAVE THIS PILOT - 6 LOOPS PER LEVEL!";
  5.    }
  6.    if(_global.pilot == 1)
  7.    {
  8.       if(_global.kredit >= 3000)
  9.       {
  10.          PilotSelect = "YOUR PILOT CAN DO 6 LOOPS PER LEVEL!";
  11.          _global.kredit -= 3000;
  12.          _global.pilot = 2;
  13.          _global.kupPilot += 3000;
  14.       }
  15.       else
  16.       {
  17.          PilotSelect = "YOU DON\'T HAVE ENOUGH CREDIT!";
  18.       }
  19.    }
  20.    if(_global.pilot == 0)
  21.    {
  22.       if(_global.kredit >= 6000)
  23.       {
  24.          PilotSelect = "YOUR PILOT CAN DO 6 LOOPS PER LEVEL!";
  25.          _global.kredit -= 6000;
  26.          _global.pilot = 2;
  27.          _global.kupPilot += 6000;
  28.       }
  29.       else
  30.       {
  31.          PilotSelect = "YOU DON\'T HAVE ENOUGH CREDIT!";
  32.       }
  33.    }
  34. }
  35.